-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix polar limits #5397
Fix polar limits #5397
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5397 +/- ##
==========================================
- Coverage 88.07% 88.07% -0.01%
==========================================
Files 301 301
Lines 61969 61991 +22
==========================================
+ Hits 54579 54596 +17
- Misses 7390 7395 +5
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Thanks for the quick fix! The diff looks fine to me and the additional unit test gives me confidence. Could you explain why this bug manifested itself for the scatter element but not for a curve? And why did it seem to work up to a certain angle? I'm guessing the polar axis wasn't being defined for a full circle. Why would the polar axes be ok for one element and not another? Once my curiosity is satisfied, I am happy to merge. :-) |
I don't think any of the plots worked there was always a slice missing. holoviews/holoviews/plotting/mpl/element.py Line 321 in 4c118b3
Returns the following for the three examples in #5396:
So the reason why the Curve plot is fine is that the Then somewhere, a round-trip of going from coordinates back to radians is done, which can be faked with something like this I hope this satisfies your curiosity. |
Yes thanks. merging! |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixes #5396